home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Python 1.3.3 / Python 133 PPC / Demo / tkinter / matt / not-what-you-might-think-1.py < prev    next >
Text File  |  1996-05-19  |  579b  |  33 lines

  1. from Tkinter import *
  2.  
  3.  
  4. class Test(Frame):
  5.     def createWidgets(self):
  6.  
  7.     self.Gpanel = Frame(self, {'width': '1i', 
  8.                    'height' : '1i',
  9.                    'bg' : 'green'}) 
  10.     self.Gpanel.pack({'side' : 'left'})
  11.  
  12.  
  13.     # a QUIT button
  14.     self.Gpanel.QUIT = Button(self.Gpanel, {'text': 'QUIT', 
  15.                         'fg': 'red',
  16.                         'command': self.quit})
  17.     self.Gpanel.QUIT.pack( {'side': 'left'})
  18.  
  19.  
  20.  
  21.  
  22.     def __init__(self, master=None):
  23.     Frame.__init__(self, master)
  24.     Pack.config(self)
  25.     self.createWidgets()
  26.  
  27. test = Test()
  28.  
  29. test.master.title('packer demo')
  30. test.master.iconname('packer')
  31.  
  32. test.mainloop()
  33.